function deleteFromBasket(num) {
        $(":input").each(function() {
                if ($(this).attr("name") == 'tx_dieblockhausbauershop_pi2[productCount][' + num + ']') {
                    $(this).attr('value', 0);
                    $('form').submit();
                }
        });
        return false;
}
