function click_select() {
  $(this).parent().parent().submit();
}

$( function () {
  $('select').change(click_select);
});

