window['onload'] = function() {
	var thEvt = function(pId,pLink,pReplace,pLabel) {
	
		if(!document.getElementById(pId) || !document.getElementById(pLink)) { return; }
	
		var el = document.getElementById(pId);
		var anc = document.getElementById(pLink);
		
		el['onchange'] = function() {
			anc.href = anc.href.slice(0,anc.href.lastIndexOf('=')+1)+el.value.replace(/ /,pReplace);
			
		}
		
	}('theme-select','my-link','-',true);
}

