<script>
var input = document.createElement('input');
input.type = 'hidden';
input.name = 'items_payment_types['+$(this).val()+']';
input.value = $('#tr_item_delivpay_' + $(this).val()).find('select.payment_product').val();
document.getElementById('cart_checkout').appendChild(input);
</script>