function testOpt(theOpt,theName) {
	if (theOpt.selectedIndex == 0 && theOpt.options[theOpt.selectedIndex].text.indexOf('Choose')!=-1) {
		alert('Please choose a '+theName);
		return false;
	}
}

function showProductCheck(formName)
{
	with (formName)
	{
		if (formName.OPT10)
		{
			if (OPT10.selectedIndex == 0)
			{
				alert('Please select a bra size');
				return false;
			}
		}
		if (OPT20.selectedIndex == 0)
		{
			alert('Please select a colour');
			return false;
		}
		else
		{
			/*
			if (OPT30.selectedIndex == 0)
			{
				alert('Please select a size');
				return false;
			}
			*/
		}
	}
	return true;
}