function clearsearch(id, txt){
  var search = document.getElementById(id);
  if(search.value == txt)
    search.value = '';
}
