var xmlHttp2
function getISDCode(cid)
{
	document.frmSignUp.isdcode.value="";
	xmlHttp2=GetXmlHttpObject();
	if (xmlHttp2==null)
	{
		alert ("Your browser does not support AJAX!");
		return;
	}
	if(cid!="")
	{
		var url="includes/modules/getISDCode.php?cid="+cid;
		xmlHttp2.onreadystatechange=show2;
		xmlHttp2.open("GET",url,true);
		xmlHttp2.send(null);
	}
	else
	{
		document.frmSignUp.isdcode.value="";
	}
}
function show2()
{ 
	if (xmlHttp2.readyState==4)
	{ 
		document.frmSignUp.isdcode.value=xmlHttp2.responseText;
	}
}
