

  function chgSelect(id){
    var obj = document.getElementById(id);
    obj.selectedIndex = obj.options.length - 1;
  }
  
  function chgText(id){
    var obj = document.getElementById(id);
    obj.value = "";
  }

