jQuery(function($) {
    $('select[name="my_month"]').change(function() {
        var my_value = $(this).val();
        $('#my_result').html(my_value);
    });
});
