I have a select:
<%: Html.DropDownListFor(c => c.DataTextField, Model, "Please select", new { id="selected-contract"}) %>
and on change I am calling an action via $.getJSON:
$("#selected-contract").change(function () {
$.getJSON("/Contract/List", [WHAT GOES HERE] ,updateList);
});
The bit I am struggling with is passing back the ID of the item selected.