How would I, using jQuery, remove the dups
English English<
From top of my head, untested:
$('#mySelect option').each(function(){ if ($('#mySelect option[value="'+$(this).val()+'"]').length) $(this).remove(); });