function ContatoComissao()
{
	
	
	if($('#frmContatoComissao').length > 0)
	{
		/**
		 * carrega cidades
		 */
		$("#selEstado").change(function()
		{
			if ($(this).val() != '')
			{
				$("#selCidade").html("<option value=\"\">Aguarde...</option>"); 
				$.ajax(
				{
					type: "POST",
					data: "hdnAcao=carregarCidades&EstadoID="+$(this).val(),
					url: "acao/Cidade.php",
					success: function(retorno)
					{
							$("#selCidade").html(retorno);
					}
				});     
			}
			else
			{
			    $("#selCidade").html("<option value=\"\">Selecione</option>");
			}
		});
		
		$("#txtNome").focus();
		$("#txtTelefone").mask('(99) 9999.9999');
		
		$("#frmContatoComissao").validate({
			errorClass: "erro",
			errorPlacement: function() {
				
			},
			errorContainer: "#erros",
			highlight: function(element, errorClass) {
				$(element).addClass(errorClass);
			},
			unhighlight: function(element, errorClass) {
				$(element).removeClass(errorClass);
			},
			rules: {
				txtNome: {
					required: true
				},
				txtEmail: {
					required: true,
					email: true
				},
				txaComentario: {
					required: true
				}
			}
		});
	}
}
