jQuery Copier toutes les options de sélectionner à un autre

var $options = $("#myselect > option").clone();

$('#secondSelectId').append($options);
Troubled Tarantula