$('#containerId').find('select[name="Field"]').on('change', function(){
var fieldi = $(this).val();
if( fieldi == 4 ) {
$(this).parents('fieldset').find('.dropdownName').hide();
$(this).parents('fieldset').find('.FieldName').show();
}
if(fieldi == 2) {
$(this).parents('fieldset').find('.dropdownName').show();
$(this).parents('fieldset').find('.FieldName').hide();
}
});
, / "dropdownName" FieldName .
JQuery.
# . html
<div id='#containerId'>, <div class="formRow .dropdownName " style="display: none;"> and <div class="formRow .FieldName" style="display: none;">