function carregar_cidades(id_estado) {
  
  if (id_estado == 0) {
	$("select#cidade").html('\t<option value="0">TODAS AS CIDADES</option>\n');
    $("select#cidade").attr("disabled", true);
  } else {
    $.get('/wp-content/themes/hostnet/retorno.php',
	      { pagina: "combo_cidades", bs: "1", id_estado: id_estado},
	  	  function(data){
            if (data == '\t<option value="0">SEM REGISTROS!</option>\n') {
              $("select#cidade").attr("disabled", true);
              $("select#cidade").html(data);
            } else {
              $("select#cidade").removeAttr("disabled");
              $("select#cidade").html('\t<option value="0">TODAS AS CIDADES</option>\n'+data);
            }
          }
    );
  }


}
