@Html.DropDownList("CountryID", (SelectList)ViewBag.CounrtyList,new { style = "width:150px;" })
@Html.DropDownList("CityID", (SelectList)ViewBag.CityList,new { style = "width:150px;" })
@Html.DropDownList("StateID", (SelectList)ViewBag.StateList,new { style = "width:150px;" })
@Html.DropDownList("DistrictID", (SelectList)ViewBag.DistrictList,new { style = "width:150px;" })
How can I change city, state and district values in a single ajax call when changing the Country dropdown?