//

function MoveSelectedOption(oFrom, oTo) {
  if (oFrom.selectedIndex > -1) {
    oOption = oFrom.options[oFrom.selectedIndex];
    oFrom.removeChild(oOption);
    oTo.appendChild(oOption);
  }
}
