In fact, I wrote a little javascript to run this behavior:
$(document).ready(function () {
$('form').find('select.auto-post').change(function () {
$(this).parents('form').submit();
});
});
, . , POST HTTP . GET. , .
UPDATE:
jquery :
Html.DropDownListFor(expression, items, new { @class = "auto-post" })