How would I, using jQuery, remove the dups
English English<
The easiest way that came into my mind was using siblings
$("select>option").each( function(){ var $option = $(this); $option.siblings() .filter( function(){ return $(this).val() == $option.val() } ) .remove() })