function enableOpcao() {
    var elementos = document.getElementsByName("tipo_pesquisa");
    var tipo_pesquisa;

    for (var i=0; i < elementos.length; i++) {
      if (elementos[i].checked) {
         tipo_pesquisa = elementos[i].value;
      }
    }

    if ( tipo_pesquisa == "municipio" ){
         enableMunicipios();
    }else if (tipo_pesquisa == "zonaGeral"){
         enableZonaGeral();
    }else {
         enableZonas();
    }
}

function enableZonaGeral() {
    var zona = document.getElementById("zona");
    var secao = document.getElementById("secao");
    var zonaGeral = document.getElementById("zonaGeral");
    var municipio = document.getElementById("municipio");

    zonaGeral.disabled = 0;
    zona.disabled = 1;
    secao.disabled = 1;
    if( municipio != null ){
        municipio.disabled = 1;
    }
}

function enableZonas(){
	
    var zona = document.getElementById("zona");
    var secao = document.getElementById("secao");
    var municipio = document.getElementById("municipio");

    if ( document.getElementById("zonaGeral") != null ){
       var zonaGeral = document.getElementById("zonaGeral");
       zonaGeral.disabled = 1;
    }

    zona.disabled = 0;
    secao.disabled = 0;
    if( municipio != null ){
        municipio.disabled = 1;
        municipio.value = 0;
    }
}

function enableMunicipios(){
	var zona = document.getElementById("zona");
    var secao = document.getElementById("secao");
    var municipio = document.getElementById("municipio");
    
     if ( document.getElementById("zonaGeral") != null ){
       var zonaGeral = document.getElementById("zonaGeral");
       zonaGeral.disabled = 1;
    }
    
    //Limpa os antigos valores
    zona.value = ""; 
    secao.value = "";
    
    zona.disabled = 1;
    secao.disabled = 1;
    if( municipio != null ){
        municipio.disabled = 0;
    }
}


function pesquisar(form)
{
	var municipio = document.getElementById("municipio");
	var zona      = document.getElementById("zona");

	if(  (  municipio.options[municipio.selectedIndex].value == "0") &&
         (  zona.value == "") ){
            alert("Por favor, selecione um município ou preencha zona/seção!");
    }else{
    	if( (zona.value != "")  && (municipio.disabled) == 0 && 
    		(municipio.options[municipio.selectedIndex].value == "0"))
    	{
    		alert("Por favor, selecione um município ou preencha zona/seção!");
    	}else{
	        form.submit();
    	}
    }
}

function removerSelecioneElementoComboBox(){
	var municipio = document.getElementById("municipio");
	//Remove o item 'selecione' do combobox;
	municipio.remove(0);	
}




