$(function() {

	// Disable COD on PP
	$('#shipping_dhl').click(function() {
		if ($('#shipping_dhl').attr("checked"))
			$('#payment_cod').attr("disabled", false);
	});

	// Disable COD on PP
	$('#shipping_pp').click(function() {
		if ($('#shipping_pp').attr("checked"))
		{
			$('#payment_cod').attr("disabled", true);
			$('#payment_transfer').attr("checked", true);
		}

	});
});
