var srh_inp=document.fsr.tx;
document.fsr.action="/search/";
var def_str='поиск по сайту...';

srh_inp.onfocus=function(){
if ( this.value == def_str ) { this.value = '';}
}
srh_inp.onblur=function(){
if ( this.value == '' ) { this.value = def_str;}
}
document.fsr.onsubmit= function(){
if (( this.tx.value == '' )||( this.tx.value == def_str )){return false;}
else {return true;}
}
