var xmlHttp;

function InsertStates(country, sel){
	xmlHttp=GetXmlHttpObject()
	if (xmlHttp==null){
	  alert ("Please install the newest version for your browser!");
	  return;
	} 
	
	var url=HTTP + "insert_search_states=" + country + "/select=" + sel;
	
	//create a delay of 1 second so that the loading gif can be showed
	xmlHttp.onreadystatechange=putValue;
	
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null);
} 

function putValue(){
	if (xmlHttp.readyState==4){
		response=xmlHttp.responseText;	
		
		ob = document.getElementById('search_states_combo_place');
		ob.innerHTML = response;
	}
}

