Tengo estas funciones que me pasan las opciones de un select multiple a otro
Código Javascript:
Ver original
<script type="text/javascript"> function pasar() { obj=document.getElementById('alum_dis'); if (obj.selectedIndex==-1) return; valor=obj.value; txt=obj.options[obj.selectedIndex].text; obj.options[obj.selectedIndex]=null; obj2=document.getElementById('alum_equi'); opc = new Option(txt,valor); eval(obj2.options[obj2.options.length]=opc); } function pasar2() { obj=document.getElementById('alum_equi'); if (obj.selectedIndex==-1) return; valor=obj.value; txt=obj.options[obj.selectedIndex].text; obj.options[obj.selectedIndex]=null; obj2=document.getElementById('alum_dis'); opc = new Option(txt,valor); eval(obj2.options[obj2.options.length]=opc); } </script>
Mi pregunta es como puedo mantener seleccionados las opciones una vez que hayan pasado al segundo select multiple?
Gracias de antemano