function validateEmptyPromo(){
	var promo = document.getElementById('promo_code');
	if(promo.value == ''){
		alert('Please enter the promotional code!');
		return false;
	}

	return true;
}