
function checkOthers()
{
	var objForm = document.theForm;
	var objList = objForm.OutstandingItemCodeID;
	var objText = objForm.Others;
	var selected_value = objList.options[objList.selectedIndex].value;
	
	if(selected_value == 35)
	{
		objText.disabled = false;
		objText.value = "Please enter description";
		objText.select();
	}
	else
	{
		objText.value = "N/A";
		objText.disabled = true;
	}
		
}

function disableTextBox()
{
	var objForm = document.theForm;
	var objText = objForm.Others;
	
	objText.disabled = true;
}
