function getSelectedText(combo)
	{
		if(!document.getElementById(combo))
			return '';
		var oCombo = document.getElementById(combo);
		if(oCombo.selectedIndex == 0)
			return '';
		return oCombo.options[oCombo.selectedIndex].text;
	}
	