function check_form() {
	if (!document.add_item.selection_size.value) {
	 alert('Please select a size for the item you are trying to add.');
	 return false;
	}
	if (!document.add_item.quantity.value) {
	 alert('Please select a quantity for the item you are trying to add.');
	 return false;
	}
}
