function valida(f1)
{
	if ( trim(f1.nome.value) == '' )
	{
		alert('Informe seu nome');
		f1.nome.value = '';
		f1.nome.focus();
		return false;
	}

	if ( trim(f1.nome.value).length < 3 )
	{
		alert('Informe seu nome completo');
		f1.nome.focus();
		return false;
	}

	if ( trim(f1.cidade.value) == '' )
	{
		alert('Informe a cidade');
		f1.cidade.value = '';
		f1.cidade.focus();
		return false;
	}

	return true;
}

jQuery(function($){
   $("#f_data_nascimento").mask("99/99/9999");
});
