function ClearOptions(oOptionList, sValue) {
	if (oOptionList) {
		for (var i = oOptionList.length - 1; i >= 1; i--) {
			if (!sValue || oOptionList[i].value == sValue) {
				 oOptionList[i] = null;
			}
		}
	}
}
