$('#contact_how').change(function() {
    var found_type = $(this).val();
    if(found_type=='Other (Please Comment)')
    {
        $('#other_ways').show();
        $('#contact_other_found').focus();
    }
    else
    {
        $('#other_ways').hide();
    }
});
