    $(function() {
        $(".datepicker").datepicker({
            showOn: 'button',
            buttonImage: '/images/calendar.png',
            buttonText: 'Pick Date',
            buttonImageOnly: true,
            changeMonth: true,
            changeYear: true,
            showButtonPanel: true,
            minDate: '-0D',
            dateFormat:"yy-mm-dd",
            numberOfMonths: 3
        });
        $('#comments').attr('maxlength',250);
        $('#comments').keyup(function(){
            var max = parseInt($(this).attr('maxlength'));
            if($(this).val().length > max){
                $(this).val($(this).val().substr(0, $(this).attr('maxlength')));
            }
            $(this).parent().find('.charsRemaining').html('You have ' + (max - $(this).val().length) + ' characters remaining');
	});
        $('select[name="how_did_you_hear"] > option').click(function(){
            if($(this).val()=="Other:"){
                $('#div_other').show();
            }
            else{
                $('#div_other').hide();
                $('#other').val('');
            }
        });
        if($('option[value="Other"]').attr('selected')=="selected")
            $('#div_other').show();
    });
