//Back up by Prashant Odesk developer
/*function country_combo(){
	var pagesObj = document.getElementById("country"); 
	if (pagesObj.options[pagesObj.selectedIndex].value == "OTHER"){
		document.getElementById('country_other').style.display = "block";
		document.getElementById('othercountry_label').style.display = "block";
	} else {
		document.getElementById('country_other').style.display = "none";
		document.getElementById('othercountry_label').style.display = "none";
	}
}*/
function country_combo(){
	var pagesObj = document.getElementById("country"); 
	if (pagesObj.options[pagesObj.selectedIndex].value == "OTHER"){
		document.getElementById('country_other').value = "";
		document.getElementById('country_other').style.display = "block";
		document.getElementById('othercountry_label').style.display = "block";
	} else {
		document.getElementById('country_other').value = "";
		document.getElementById('country_other').style.display = "none";
		document.getElementById('othercountry_label').style.display = "none";
	}
}
function country_combo_residential(){
	var pagesObj = document.getElementById("residentialcountry"); 
	if (pagesObj.options[pagesObj.selectedIndex].value == "OTHER"){
		document.getElementById('residential_country_other').style.display = "block";
		document.getElementById('residential_othercountry_label').style.display = "block";
	} else {
		document.getElementById('residential_country_other').style.display = "none";
		document.getElementById('residential_othercountry_label').style.display = "none";
	}
}