Form.SelectItem = function (id) {
	var item = Form.Item(id);
	if (! item) {
		return null;
	}
	
	item.defaultValue = new String(item.value);
	
	item.reset = function () {
		for (var i = 0; i < this.options.length; i++) {
			this.options[i].selected
				= (this.options[i].value == this.defaultValue);
		}
	}
	
	return item;
}

