function clear_default(id, text) {
  var obj = $(id);
  if (obj && obj.value == text) {
    obj.value = "";
  }
  $(id).addClassName('normal');
}