Behaviour.register({ 
'#SearchForm_SearchForm_Search' : { 
onfocus : function() { 
         if(this.value == 'Szukaj') this.value = ''; 
}, 
onblur : function() { 
   if(this.value == '') this.value = 'Szukaj'; 
} 
} 
});