Hola de nuevo.
Al decirte que consultaras las FAQ-1 me refería a que ahí podías encontrar una ayuda para desarrollar el código que necesitabas. Algo parecido a esto:
Código PHP:
<html>
<head>
<script>
function cambiar() {
obj=document.getElementById('sel1');
val=obj.value;
txt=obj.options[obj.selectedIndex].text;
var selOpcion=new Option(txt, val);
iPos=document.getElementById('sel2').options.length;
eval(document.getElementById('sel2').options[iPos]=selOpcion);
}
</script>
</head>
<body>
<select id="sel1" size="3">
<option value="1">Uno</option>
<option value="2">Dos</option>
<option value="3">Tres</option>
</select>
<select id="sel2" size="3">
</select>
<input type="button" onclick="cambiar()"/>
</body>
</html>
Saludos,