function cria_ajax(){
	try{xmlhttp = new XMLHttpRequest();}
		catch(ee){
			try{xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");}
		catch(e){
			try{xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");}
		catch(E){xmlhttp = false;}
		}
	}
return xmlhttp;
}

function seleciona(acao, variavel, selecionado){

	if(acao!=0){
		var xmlhttp=cria_ajax();
		
		xmlhttp.open("GET", "scripts/buscaAcao.asp?acao="+acao+"&variavel="+variavel+"&selecionado="+selecionado, true);
		
		xmlhttp.onreadystatechange=function(){
			if(xmlhttp.readyState==4){
				
				if(acao == 'estado'){
					var texto=xmlhttp.responseText;
					document.getElementById('ComboEstado').innerHTML=texto;
				}
				
				if(acao == 'cidade'){
					var texto=xmlhttp.responseText;
					document.getElementById('ComboCidade').innerHTML=texto;
				}
			}
		}
	xmlhttp.send(null);
	delete xmlhttp;
	}
}