$(document).ready(function(){
  $("select[name=cidade]").change(function(){
    $("select[name=bairro]").html('<option value="0">Carregando...</option>');
    
    $.post("../inc/bairros.php",
          {cidade:$(this).val()},
          function(valor){
             $("select[name=bairro]").html(valor);
          }
          )
    
 });
});
