$(function(){

	$("#city").change(function(){
			$("#comm").empty();
			var url ="/gssi/scripts/searchforms/districts/redbreddeer/"+$("#type").val()+"/"+$(this).val()+".html";
			$("#comm").load(url);
	});
	
	$("#type").change(function(){
		$("#city").empty();
		$("#comm").empty();
		var type = $(this).val();
		var url ="/gssi/scripts/searchforms/areas/redbreddeer/"+$(this).val()+"/"+$(this).val()+".html";
		$("#city").load(url);
    
    // doesn't trigger with back button
    if($(this).val()=='com') $('#city').attr("name", '@area');
    else $('#city').attr("name", '@citytownname');
    
	});
	
});