How do I append default value to the my dropdownlistfor using the code below
[AcceptVerbs(HttpVerbs.Get)]
    public ActionResult GetCitiesByStateId(int stateId)
    {
        if (stateId==0)
        {
            throw new ArgumentNullException("stateId");
        }
        var x = _repository.GetAllCitiesByStateId(stateId);
        var result = (from s in x
                      select new
                      {
                          id = s.id,
                          name = s.CityName
                      }).ToList();
        return Json(result, JsonRequestBehavior.AllowGet);
    }
My view code looks like this:
 @Html.DropDownListFor(x => x.City.ID, Model._Cities)
 @Html.ValidationMessageFor(x => x.City)
Thanks anticipation
