function acceptTerms() {
	var accept = document.getElementById('accept');
	if (accept.checked == false) {
		alert('You have to accept our terms and conditions to place your order');
		return false;
	}
	return true;
}
