I use a DropDownListFor
and a label text on my page.
<%=Html.DropDownListFor(x => x.MotiveClientType,
new SelectList(
Model.ClientMotives, "Id", "Label", Model.MotiveClientType),
new { id = "ddlMotiveClientType" }
)%>
How can I change my label when selecting value on my DropDownListFor
?