﻿jQuery(function () {


    jQuery(".OrderLine input[type='checkbox']:checked").each(function () {

        jQuery(this).parent().parent().next().find("table").each(function () {
            jQuery(this).css("display", "block");
        });

    });

   
});
