// ***************************************************************************

//
// Copyright (C) 2002 QSS Ltd., All rights reserved.
// $Id: form-functions.js, v. 0.2 2002/05/07 2:13:44 PM aselimovic Exp $
//

function updateSelectionList(mySelect, theValue) {
   for (i = 0; i < mySelect.options.length; i++) {
      if (mySelect.options[i].value == theValue) {
         mySelect.selectedIndex = i;
         break;
      }
   }
}