var xmlHttp = null;
function ajaxcity_designation()
{
	xmlHttp = createObject();

	if (xmlHttp == null)
	{
		alert("Your browser not support AJAX");
		return;
	}
//	alert("Inside ajax");
	var id = document.job_candidate.x_exps_indid2.value;
	

	url = "select_designation.php"				
	url = url + "?id=" + id;
	//alert("Url is : " + url);
	xmlHttp.onreadystatechange = show2548;
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null);	
}
function show2548()
{
	//alert(xmlHttp.readyState);
	if (xmlHttp.readyState == 4 )
	{
		if (xmlHttp.responseText)
		{
			document.getElementById("designation").innerHTML = xmlHttp.responseText;
			document.getElementById("errormsg").innerHTML = "";
		}
		else
		{
			document.getElementById("designation").innerHTML = "Sorry, No Designation under the Industry.";
		}
	}
}
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;
}
