function DocumentLocation( SELECTOR ){ //'SELECTOR' must be select elemenet that have two or more options.
	this.targetObject = SELECTOR;
	this.getURL = function(){
		location.href = this.targetObject.options[ this.targetObject.selectedIndex ].value;
	}
}

