It doen't work with the select dropdown. So you must have at least the size 2 of your select element:
Solved with jquery
$(".selectClassName").on("click", function(){ $(this).find("option").eq($(this).prop("selectedIndex")).remove(); });