
	//
	// Region Changer for DevelopmentLandForSale.com
	//
	
	
	function loadRegionsx(){
	
		var selected = this[this.selectedIndex].value;
		
		var dis = $("#ls_regions").attr("disabled");
		
		if(selected != 0){
			
			if(dis) $("#ls_regions").removeAttr("disabled");
		
			var output = '';
		
			$.each(regions[selected], function(){
			
				output = output + '<option value="' + this[0] + '">' + this[1] + '</option>';
									   
			});
			
			var prepend = '<option value="0">Please Select...</option>';
			
			if(regions[selected].length < 2){
				
				prepend = '';
				
			}
		
			$("#ls_regions").html(prepend + output);
		
			$("option:first", "#ls_regions").attr("selected","selected");
		
		}else{
		
			$("#ls_regions").attr("disabled", "disabled");
		
			$("#ls_regions").html('<option value="0">Please select a country...</option>');
		
		}
		
	}
	
	
	$(document).ready(function(){
	
		$("#ls_country").change(loadRegionsx);
	
	});


	//
