jQuery wybierz zmień show / hide div event

Próbuję utworzyć formularz, który po wybraniu elementu „działka” pokaże div, ale gdy nie zostanie wybrany, chciałbym ukryć div. Oto mój znacznik w tej chwili:

To jest mój HTML jak dotąd ..

    <div class="row">    
    Type
        <select name="type" id="type" style="margin-left:57px; width:153px;">
                <option ame="l_letter" value="l_letter">Large Letter</option>
                <option name="letter" value="letter">Letter</option>
                <option name="parcel" value="parcel">Parcel</option>
        </select>                    
</div>

<div class="row" id="row_dim">
    Dimensions
        <input type="text" name="length" style="margin-left:12px;" class="dimension" placeholder="Length">
        <input type="text" name="width" class="dimension" placeholder="Width">
        <input type="text" name="height" class="dimension" placeholder="Height">
</div> 

To do tej pory moje jQuery ..

  $(function() {
    $('#type').change(function(){
        $('#row_dim').hide(); 
        $("select[@name='parcel']:checked").val() == 'parcel').show();   
    });
});

questionAnswers(9)

yourAnswerToTheQuestion