jQuery Copie todas las opciones de seleccionar a otro
var $options = $("#myselect > option").clone();
$('#secondSelectId').append($options);
Troubled Tarantula
var $options = $("#myselect > option").clone();
$('#secondSelectId').append($options);