function citytoindia()
{
	if(document.forms[0].city.selectedIndex==0)
		{
		document.forms[0].country.selectedIndex=167;
		return;
		}
	if(document.forms[0].city.selectedIndex==1)
		{
		document.forms[0].country.selectedIndex=0;
		return;
		}
	
	document.forms[0].country.selectedIndex=0;
}

function countrytocity()
{
	if(document.forms[0].country.selectedIndex!=0)
		{
		document.forms[0].city.selectedIndex=0;
		return;
		}

 document.forms[0].city.selectedIndex=47;
}

function handlesearch()
{
option1=document.forms[0].city.options[document.forms[0].city.selectedIndex].value;
option2=document.forms[0].country.options[document.forms[0].country.selectedIndex].value;
if((option1 =="") && (option2 =="India"))
	{	
		alert("Select a city !!");
		document.form1.city.focus();
		return false;
	}
	else
	{
	return true;
	}
}

function handleSubmitEvent()
{
if(document.form.username.value=="")
	{	
		alert(" Please Enter Username");
		document.form.username.focus();
		return false;
	}
if(document.form.pass.value =="")
	{	
		alert(" Please fill in Password");
		document.form.pass.focus();
		return false;
	}
	return true;
}