$(function () {
$("#bn").change(function () {
    if ($(this).val() != '') {
        $("#search_form").submit();
    }
});
});

