function mudar(valor)
{
    CarregaArquivo("cidades.php",valor);
}

var retorno;
function CarregaArquivo(url,valor){
    retorno = null;
    if (window.XMLHttpRequest) {
        retorno = new XMLHttpRequest();
        retorno.onreadystatechange = processReqChange;
        retorno.open("GET", url+'?dados='+valor, true);
        retorno.send(null);
    } else if (window.ActiveXObject) {
        retorno = new ActiveXObject("Microsoft.XMLHTTP");
        if (retorno) {
            retorno.onreadystatechange = processReqChange;
            retorno.open("GET", url+'?dados='+valor, true);
            retorno.send();
        }
    }
}
function processReqChange(){
    if (retorno.readyState == 4) {
		if(retorno.status == 200){
			document.getElementById('mostraCombo').innerHTML = retorno.responseText;
		} else {
			alert("Erro: "+retorno.statusText);
		}
   }
}