If you want to create a drop down directly on view regardless of controller and model then you can create it using following code
@Html.DropDownList("Departments",
new SelectList(new [] { new KeyValuePair( "IT", 0 ), new KeyValuePair( "HR", 1 )},"Value", "Key"))