var Dub3DropDownList = function()
{
    return {
        Update : function(sourceID, targetID)
        {
            var source = document.getElementById(sourceID);
            var target = document.getElementById(targetID);
            target.innerHTML = source.options[source.selectedIndex].text;
        }
	};
}();