window.addEvent('domready', function() 
{
	$('searchform').getElements('select[name$=page_id]').addEvent('change', function(e)
	{ 
		url = 'http://www.symbision.nl/';
		if (this.value != '') {
			document.location.href = url + this.value;
		} 
	}); 

	/* clear searchform */
	$('s').addEvent('click', function(e){
		this.value = '';
	});

});

