function clearTheRest(theField){
	if (theField[0].checked) {
		for(i=1; i < theField.length; i++){
			theField[i].checked = false;
		}
	}
}

