
	// function changeFactuurAdres() {
	
		// if($('#otherFactuur').is(':checked')) {
			
		// $('<div id="otherFactuurContainer"></div>')
			// .load('/webshop/ajax_responder.php', 'act=getForm&step=3&form=factuur', function() {
				// $(this).appendTo('#otherFactuurLabel');
			// });
		// }
		// else{
			// $('#otherFactuurContainer').remove();
		// }
	// }
	
	function changeDeliverAdres() {
	
		if($('#otherDeliver').is(':checked')) {
		$('<div id="otherDeliverContainer"></div>')
			.load('/webshop/ajax_responder.php', 'act=getForm&step=3&form=deliver', function() {
				$(this).appendTo('#otherAfleverLabel');
			});
		}
		else{
			$('#otherDeliverContainer').remove();
		}
	}
