function getDropDownValue(dropDownObject) {
	i = dropDownObject.options.selectedIndex;
	if (i != -1) {
		return dropDownObject.options[i].value;
	}
	return null;
}
