function buscar(){
	val = document.getElementById("texto");
	cat = document.getElementById("categorias");
	prov = document.getElementById("provincias");
	if (val!=null && val.value=="" && cat!=null && cat.value=="0" && prov!=null && prov.value=="0")
		return false;
	else
		return true;
}
