jQuery(function( $ ){    
    $('.frm_order_animal_class').click(function(){
        if ($(this).val()==1) {$('#div_order_animal_kind').show();}
        else {$('#div_order_animal_kind').hide();}
    });    
});


