$(document).ready(function(){
	if($("#propCategory option:selected").val()=='3'){
		$("#prop_res").hide();
		$("#prop_com").show();
		if($("#chkSale option:selected").val()=='rent'){
			$(".rentp").hide();
			var rtype = '_com';
			$("#rentprice_"+$("#period option:selected").val()+rtype).show();
		}
	}else{
		$("#prop_com").hide();
		$("#prop_res").show();
		if($("#chkSale option:selected").val()=='rent'){
			$(".rentp").hide();
			var rtype = '';
			$("#rentprice_"+$("#period option:selected").val()+rtype).show();
		}
	}

	$("#propCategory").change(function(){
		if($("#propCategory option:selected").val()=='3'){
			$("#prop_res").hide();
			$("#prop_com").show();
			if($("#chkSale option:selected").val()=='rent'){
				$(".rentp").hide();
				var rtype = '_com';
				$("#rentprice_"+$("#period option:selected").val()+rtype).show();
			}
		}else{
			$("#prop_com").hide();
			$("#prop_res").show();
			if($("#chkSale option:selected").val()=='rent'){
				$(".rentp").hide();
				var rtype = '';
				$("#rentprice_"+$("#period option:selected").val()+rtype).show();
			}
		}
	});
	if($("#chkSale option:selected").val()=='rent'){
		$("#saleprice").hide();
		$("#rentperiod").show();
		if($("#propCategory option:selected").val()=='3'){
			var rtype = '_com';
		}else{
			var rtype = '';
		}
		$("#rentprice_"+$("#period option:selected").val()+rtype).show();
	}else{
		$("#rentprice").hide();
		$(".rentp").hide();
		$("#saleprice").show();
	}

	$("#rentperiod").change(function(){
		$(".rentp").hide();
		if($("#propCategory option:selected").val()=='3'){
			var rtype = '_com';
		}else{
			var rtype = '';
		}
		$("#rentprice_"+$("#period option:selected").val()+rtype).show();
	});
	
	$("#chkSale").change(function(){
		if($("#chkSale option:selected").val()=='rent'){
			$("#saleprice").hide();
			$("#rentperiod").show();
			if($("#propCategory option:selected").val()=='3'){
				var rtype = '_com';
			}else{
				var rtype = '';
			}
			$("#rentprice_"+$("#period option:selected").val()+rtype).show();
		}else{
			$("#rentperiod").hide();
			$(".rentp").hide();
			$("#saleprice").show();
		}
	});
});
