function bc(){
		document.getElementById("PinZip").focus();
		}
       function bs(){
		document.getElementById("Country").focus();
		} 

 function cityOtherValue()
 {
	if(document.getElementById("City").value=="Other")
	{    document.getElementById("otherCity").disabled=false;
		//document.getElementById("otherCity").focus();
	}
	else{
		document.getElementById("otherCity").value="";
		 document.getElementById("otherCity").disabled=true;
		}
	
	CheckCountry();
 }
 
 function cityCheckfor()
 {if(document.getElementById("City").value=="Other")
	{
		document.getElementById("otherCity").disabled=false;
		//document.getElementById("otherCity").focus();
	}
	
 }
 function cityEntry()
 {
	if(document.getElementById("City").value!="Other")
		document.getElementById("otherCity").click();
 }
 function CheckCountry()
 {
	if(document.getElementById("Country").value!="India")
	{
		document.getElementById("City").value='Other';
		document.getElementById("State").value='Other';
		document.getElementById("otherCity").disabled=false;
		document.getElementById("otherCity").focus();
	}
	
 }