	function jump_menu(id)
	{
			var dropdownIndex = document.getElementById(id).selectedIndex;
			var dropdownValue = document.getElementById(id)[dropdownIndex].value;

			window.location.href=dropdownValue;

	}

		function clearValue(id)
	{
		document.getElementById(id).value='';	
	}

	function show_district()
	{
		city_id = $("#city_id").val();
		$("#area").html('Loading...');
		$.post("ajax/districts/index", { city_id: city_id, random_number: Math.random()  },
 	 	function(data){
		$("#area").html(data);
		$("#area").fadeIn("slow");
	  });	
	}
	
	function show_district_home(id)
	{
		city_id = $("#city_id" + id).val();
		$("#area" + id).html('Loading...');
		$.post("ajax/districts/index", { city_id: city_id, show_other: 2, random_number: Math.random() },
 	 	function(data){
		$("#area" + id).html(data);
		$("#area" + id).fadeIn("slow");
	  });	
	}
