function submitPaymentMethod()
{
	$('payment_method_form').submit();
}

function updatePaymentBoxes(id)
{
	new Request({
		url: '/betaalwijze/ajax/'+id+'/',
		method: 'get',
		onRequest: function()
		{
			$$('.total_price_container').each(function(el) {
				el.addClass('loading');
			});
		},
		onComplete: function()
		{
			$('total_price_containter').innerHTML = this.response.text;
			
			$$('.total_price_container').each(function(el) {
				el.removeClass('loading');
			});
		}
	}).send();
}

function updateIssuerID(selectbox) {
	$('issuerID').value = ($(selectbox).get('value'));
}
