﻿jQuery(document).ready(function ($) {
    $('.other_list').change(function () {
        if ($(this).val() == 'Other') {
            $('.other_text').show();
        } else {
            $('.other_text').hide();
        }
    });
});
