    	function emailFormSubmit() {

			var formAlert = '';

			countryIndex = document.getElementById('cm-fo-qlutr').selectedIndex;
			countryValue = document.getElementById('cm-fo-qlutr').options[countryIndex].value;
			emailValue = document.getElementById('pikjh-pikjh').value;
			nameValue =  document.getElementById('name').value;
			
	    	if(countryValue == '') {
				formAlert = 'Please select a country\n';
				};

	    	if(nameValue == '') {
	    		formAlert += 'Please enter your name\n'
			    };

	    	if(emailValue == '') {
	    		formAlert += 'Please enter your email address\n'
			    };

	    	if(emailValue != '') {
	    		if ((emailValue.indexOf('@') == -1) || (emailValue.indexOf('.') == -1))
	    		formAlert += 'Please enter a valid email address\n'
			    };

	    	if (formAlert != '') {
	    		alert(formAlert);
	    		return false;
	    		}
	    
	    }
