function ableOptionList(checkId, optListId)
{
	var optList = document.getElementById(optListId) ;	
	if(optList.disabled) optList.disabled = ""  ;
	else optList.disabled = "disabled"
}
