The
ASP.NET MVC Preview 5 has provided the functionality to add a default
option label for DropDownList control. For adding a default
option label, provide the default label as the first argument of the
DropDownList helper method. This will render the default option label element with its value attribute equal to an empty string, but with its inner text as the value that you provide.
<%=Html.DropDownList("--Select Customer--","Customer") %>