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

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

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