function checkProductSize() {
	if(document.getElementById('option1')) {
		if(document.getElementById('option1').value=='') {
			alert('Please select a size');
			return false;
		}
	}
	return true;
}