Supposing Model.Services contains list of ServiceType objects you could add an item to the list like this:
<%=
Html.DropDownList("ServiceId", new SelectList(
new []
{
new ServiceType
{
Id = 0,
Name = "-- Please Select --"
}
}.Union(Model.Services), "Id", "Name"), 0)
%>