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

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

function Confime_acao($pergunta,$url,$cancelado){

		var name = confirm($pergunta);
		if (name == true) {
		if (!$url == '') {location.href=$url;}
		}else {
		(alert($cancelado));
		} ;
}
