  
  function fncValidacao(formData, jqForm, options)
    {               
        cnd  = 's,maiNome,Nome,text,generico,3;'
             + 's,maiEmail,Email,text,email,5;'
             + 's,maiTelefone,Telefone,text,generico,14,14;';
        
        return fncValida(cnd);              
    }
  
  function fncResposta(responseText, statusText)
    {
      alert(responseText);
      $('#frmCadastroMailer').resetForm(); 
    }
  
  // wait for the DOM to be loaded 
  $(document).ready(function() { 
      
      var options = 
        {
          beforeSubmit:  fncValidacao,  // pre-submit callback 
          success:       fncResposta   // post-submit callback 
        }
      
      // bind 'myForm' and provide a simple callback function 
      $('#frmCadastroMailer').ajaxForm(options); 
  }); 