// JavaScript Document
var xmlHttpSP
function FillStateProvinceCombo(str)
{
	document.getElementById("state_province_loading").innerHTML="loading...";
	if (str.length==0)
  	{ 		
  		document.getElementById("state_province_loading").innerHTML="";
  		return;
  	}
	xmlHttpSP=GetXmlHttpObject();
	if (xmlHttpSP==null)
  	{
  		alert ("Your browser does not support AJAX!");
  		return;
  	} 
	var url="getStateProvinceComboValue.php";
	url=url+"?country="+str;	
	xmlHttpSP.onreadystatechange=stateChanged1;
	xmlHttpSP.open("GET",url,true);
	xmlHttpSP.send(null);
} 

function stateChanged1() 
{ 
	if (xmlHttpSP.readyState==4)
	{ 
		document.getElementById("state_province").innerHTML=xmlHttpSP.responseText;	
		document.getElementById("state_province_loading").innerHTML="";
	}
}


