function addtext(){
if(document.getElementById('query').value==''){
document.getElementById('query').value='Enter your search word(s) here to find your sign...';
}
}

function removetext(){
if(document.getElementById('query').value=='Enter your search word(s) here to find your sign...'){
document.getElementById('query').value='';
}
}

addtext();