var xmlHttp = null;
function ajaxcityfunctions()
{
	xmlHttp = createObject();

	if (xmlHttp == null)
	{
		alert("Your browser not support AJAX");
		return;
	}
//	alert("Inside ajax");
	var country_id = document.jobsearch.x_job_country.value;
	

	url = "select_city.php"				
	url = url + "?id=" + country_id;
	//alert("Url is : " + url);
	xmlHttp.onreadystatechange = show234;
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null);	
}
function show234()
{
	//alert(xmlHttp.readyState);
	if (xmlHttp.readyState == 4 )
	{
		if (xmlHttp.responseText)
		{
			document.getElementById("city").innerHTML = xmlHttp.responseText;
		}
		else
		{
			document.getElementById("city").innerHTML = "Error in Register, Re-Enter all details.";
		}
	}
}
function createObject()
{
	var xmlHttp;
	try
	{
		xmlHttp = new XMLHttpRequest();
	}
	catch(e)
	{
		try
		{
		xmlHttp =new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch(e)
		{
			xmlHttp =new ActiveXObject("Microsoft.XMLHTTP");
		}
	}
	return xmlHttp;
}
