$("campo_box_buscar").onfocus = function(){
	if(this.value == "Buscar..."){
		this.value = "";
	}
	else{
		this.select();
	}
}
new Ajax.Updater('box_clima', '/clima.php');
