
function Validate_PAYMENT_OPTIONS_SELECTION() 
{

	var payment_option_selected = document.PAYMENT_OPTIONS_SELECTION.payment_option_selected;

	if (payment_option_selected.value == "null")
	{
		window.alert("You have not chosen a payment option.");
		payment_option_selected.focus();
		return false;
	}

	return true;
}

