Foreros ya lo he resuelto solo agrega una línea mas
aquí esta el código
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);
opc.defaultSelected = true; //<---Aqui
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>