function validateForm()
{
	var country=document.paypalorder.lc.value;
	var proservice=document.paypalorder.item_name.value;
	var proserviceamt=document.paypalorder.amount.value;

	if (country=="") {
		alert('Please select your *Country* to continue!');
		document.paypalorder.lc.focus();
		return false;
		}

	if (proservice=="--> Please select a Professional Member Listing Service <--") {
		alert('Please choose a *Professional Member* service to continue!');
		document.paypalorder.item_name.focus();
		return false;
		}

	if (proserviceamt=="        ") {
		alert('Please select a *Professional Member* service to continue!');
		document.paypalorder.item_name.focus();
		return false;
		}
}
