$(function()
{
    $('#heard_from option:selected').each(function () {
        if ($(this).text() == 'Other')
        {
            $('.sh_other_hear').show('fast');
        }
        else
        {
            $('.sh_other_hear').hide('fast');
            $('.sh_other_hear input').val('');
        }
    });
    
    $('#heard_from').change(function()
    {
        $('#heard_from option:selected').each(function () 
        {
            if ($(this).text() == 'Other')
            {
                $('.sh_other_hear').show('fast');
            }
            else
            {
                $('.sh_other_hear').hide('fast');
                $('.sh_other_hear input').val('');
            }
        });
    })
});