$(document).ready(function(){

Behaviour.register({
'#Form_PartsSearchForm_Keywords' : {
onfocus : function() {
         if(this.value == 'Keywords') this.value = '';
},
onblur : function() {
   if(this.value == '') this.value = '';
}
}
}); 
   });
