inputBusca = function(obj,texto){
	if(obj.value == texto){
		obj.value = '';
	}else if(obj.value == ''){
		obj.value = texto;
	}
}