$(document).ready(function(){
	//SCRIT PARA OCULTAR EL TEXTO EN INPUT AL HACAER CLICK................................................................	
	var texto ="Escriba el nombre del Producto, Servicio o Empresa";
	var vacio ="";
	$("input#txt_buscar").val(texto);
	$("input#txt_buscar").focus(function () {
         $(this).val(vacio);
    });
});
