$(function(){
		   
	$('#type option:first').attr('selected', 'selected');	   
		   
	$("#citytownname").change(function(){
			$("#district").empty();
			var st = $(this).val();
			var url ="/gssi/scripts/searchforms/districts/"+$("#realtor_mysqldb").val()+"/"+$("#type").val()+"/"+st.replace(/@/,"")+".html";
			$("#district").load(url);
	});
	
	$("#type").change(function(){
		$("#citytownname").empty();
		var type = $(this).val();
		var url ="/gssi/scripts/searchforms/areas/"+$("#realtor_mysqldb").val()+"/"+$(this).val()+"/"+$(this).val()+".html";
		$("#citytownname").load(url,function(){
				if(type=="red") { $("#listingtype").val("res"); $("#respropclass").val("@SF"); }
				if(type=="rea") { 
					$("#listingtype").val("res"); 
					$("#respropclass").val("@COND");
				}
				if(type=="rur") { $("#listingtype").val("rrl"); $("#respropclass").val(""); }
				if(type=="mob") { $("#listingtype").val("mbl"); $("#respropclass").val(""); }
		});
	});
	
});