function validateChildForm(childid) {

	if(document.getElementById('option1_'+childid)) {
		if(document.getElementById('option1_'+childid).selectedIndex==0) {
			document.getElementById('msg_'+childid).style.display='block';
			return false;
		} else {
			return true;
		}
	}

	if(document.getElementById('option2_'+childid)) {
		if(document.getElementById('option2_'+childid).selectedIndex==0) {
			document.getElementById('msg_'+childid).style.display='block';
			return false;
		} else {
			return true;
		}
	}
}
