public JsonResult GetCityByCountry(int CountryID)
 {
     DropDownListsRepository modelRepo = new DropDownListsRepository();
      return Json(modelRepo.GetCityByCountry(CountryID).OrderBy(o => o.Name).Select(c => new { ID = c.ID, Name = c.Name }).OrderBy(o => o.Name), JsonRequestBehavior.AllowGet);
 }