function clearCombobox(idCombo) {
	var obj = document.getElementById(idCombo);
	obj.selectedIndex = 0;
}