
<script>
function getOpt(select1,select2){
for (bCnt=0;bCnt<select1.length;bCnt++){
if (select1.options[bCnt].selected){
newOpt=new Option(select1.options[bCnt].text,select1.options[bCnt].value,false,false);
select2.options[select2.length]=newOpt;
remOpt(select1);/* Fix: to remove from [ … ]