function clearTextfield(target, value) {
  if (target.value == value) {
    target.value = '';
  }
};
