function toggleDelivery() {
	if ($('delivery').checked == true) {
		$('deliveryBox').show();
	} else {
		$('deliveryBox').hide();
	}
}
