function doform(formname,selectname) { 
	var theForm = document.forms[formname].elements[selectname];
	var finalURL = theForm.options[theForm.selectedIndex].value;
	
	if (finalURL.indexOf("http://") == -1 && finalURL.indexOf("https://") == -1) location.href = finalURL;
	else {
		if (finalURL.substring(0,1) == 0) location.href = finalURL.substring(1,finalURL.length);
		else window.open(finalURL.substring(1,finalURL.length));
	}
}