how to remove selected value from drop downs.
here is my code.
@viewbag.empskil = new selectlist(db.skils,"skillid","skillname");
my view code
@html.Dropdown("skill", @viewbag.empskil as SelectList);
It Showing all skill in drop down An Employee can Have multiple Skill. multiple skill are adding with rating .
I just Want to remove Already Selected Skill From Drop down. can anybody tell me how to accomplish this
here is the screen

I just want if employee having skill these skill will not show in drop down.can any body tell me how it will be done.