function jump()
{
var selected = document.links.choice.selectedIndex;
location.href = document.links.choice.options[selected].value;
}

	document.write('<form name="links" class="formstyle">');
	document.write('<Select class="formlinks" name="choice" onChange="jump()">');
	document.write('<OPTION SELECTED>Våra agenter:</option>');
	document.write('<option value="http://www.westerstrand.be">Belgien</option>');
	document.write('<option value="http://www.lambert-westerstrand.fr">Frankrike</option>');
	document.write('<option value="http://www.westerstrand.be">Holland</option>');
	document.write('</select>');
	document.write('</form>');
