$(document).ready(function() {
    $("#s").focus(function() {
            if ( this.value == this.defaultValue ) {
                this.value = '';
            } else if ( this.value != this.defaultValue ) {
                this.select();
            }
        }
    );
    
    $("#s").blur(function() {
            if ( $.trim(this.value) == '' ){
                this.value = (this.defaultValue ? this.defaultValue : '');
			}
        }
    );

    $("#form_buscar").submit(function() {
            if ( $("#s").val() != '' && $("#s").val() != "Buscar" ) {
                console.log("Buscar");
                return true;
            }
            return false;
        }
    );
});