In my viewModel I have:
public class PersonViewModel { public Person Person { get; set; } public int SelectRegionId { get; set; } public IEnumera
You are creating SelectList instance twice. Get rid of one of them:
@Html.DropDownListFor(model => model.SelectRegionId, Model.Regions, "Choose... ")