$(document).ready(function(){
$(".flabel").attr("disabled","disabled");
$("#cf7_field_2").change(function () {
	//alert("="+$(this)[0].value);
		if($(this)[0].value == 10){
			top.location="/hotel-form"; 
		}
	});
	$("#cf8_field_2").change(function () {
		//alert("="+$(this)[0].value);
			if($(this)[0].value == 10){
				top.location="/hotel-form"; 
			}
		});
		$("#cf9_field_2").change(function () {
			//alert("="+$(this)[0].value);
				if($(this)[0].value == 10){
					top.location="/hotel-form"; 
				}
			});
			$("#cf10_field_2").change(function () {
				//alert("="+$(this)[0].value);
					if($(this)[0].value == 10){
						top.location="/hotel-form"; 
					}
				});	
				$("#cf11_field_2").change(function () {
						//alert("="+$(this)[0].value);
							if($(this)[0].value == 10){
								top.location="/hotel-form"; 
							}
						});
	
});

