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>Our agents:</option>');
	document.write('<option value="http://www.westerstrand.be">Belgium</option>');
	document.write('<option value="http://www.lambert-westerstrand.fr">France</option>');
	document.write('<option value="http://www.westerstrand.be">Holland</option>');

	document.write('</select>');
	document.write('</form>');