/**
 * @alias ComboBox.class
 * @author WilC <wilz04@gmail.com>
 * @since 2007.
 */

function ComboBox(element) {
	
	this.box = element;
	
	this.setSelectedIndex = function (index) {
		this.box.selectedIndex = index;
	};
	
	this.getValue = function () {
		return this.box.options[this.box.selectedIndex].value;
	};
	
	this.setFocus = function () {
		this.box.focus();
	};
	
}

