$(function(){
	$('#busqueda').submit(function(){
		if ($(this).find('#valor').val().length>=3) return true;
		else{ 
			alert("La busqueda debe ser de al menos 3 carácteres.");
			return false;
			}
	});
});
