// JavaScript Document

/* select dos forms */

      $().ready(function() {
      $("select[@name=frmestado]").change(function(){
      $('select[@name=frmcidade]').html('<option value="sda">Carregando...</option>');

      $.post('select.php',

      { frmestado : $(this).val() },

function(resposta){
 $('select[@name=frmcidade]').html(resposta);
  }

);
});
});

