
	//
	// DevelopmentLandForSale.com
	//
	
	
	function enableOther(){

		var ref = "";

		if(this.name == "l_country") ref = "l_";
		
		if($("#"+ref+"country").val() == "o"){
		
			$("#"+ref+"other").removeAttr("disabled");
			
		}else{
		
			$("#"+ref+"other").attr("disabled", "disabled");
			
		}
		
	}
	

	$(document).ready(function(){
	
		if($("#country").val() == "o") $("#other").removeAttr("disabled");
		
		if($("#l_country").val() == "o") $("#l_other").removeAttr("disabled");
	
		$("#l_country").change(enableOther);
		
		$("#country").change(enableOther);
	
	});


	//

