public JsonResult GetDestinationRegion()
        {
            DropDownListsRepository modelRepo = new DropDownListsRepository();
            return new JsonResult()
            {
                Data = (modelRepo.GetRegion().OrderBy(o => o.Name).Select(c => new { DestinationRegionID = c.ID, DestinationRegionName = c.Name }).OrderBy(o => o.DestinationRegionName)),

                JsonRequestBehavior = JsonRequestBehavior.AllowGet,
                MaxJsonLength = Int32.MaxValue
                //Use this value to set your maximum size for all of your Requests
            };
        }