var xmlHttp = null;
function ajax_city_proj2()
{
	xmlHttp = createObject();

	if (xmlHttp == null)
	{
		alert("Your browser not support AJAX");
		return;
	}
//	alert("Inside ajax");
	var country_id = document.search3.x_job_country.value;
	

	url = "select_city_2.php"				
	url = url + "?id=" + country_id;
	//alert("Url is : " + url);
	xmlHttp.onreadystatechange = show134;
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null);	
}
function show134()
{
	//alert(xmlHttp.readyState);
	if (xmlHttp.readyState == 4 )
	{
		if (xmlHttp.responseText)
		{
			document.getElementById("find2_location").innerHTML = xmlHttp.responseText;
		}

	}
}
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;
}
