function show_hide() {
	if(!$('info_for'))
		return;
	value = $('info_for').value;

	if(value == "prijsofferte") {
		$('price_1').show();
		$('price_2').show();
		$('price_3').show();
		$('techn_1').hide();
		$('techn_2').hide();
		$('techn_3').hide();
	} else {
		if(value == "technische informatie") {
			$('price_1').hide();
			$('price_2').hide();
			$('price_3').hide();
			$('techn_1').show();
			$('techn_2').show();
			$('techn_3').show();
		} else {
			$('price_1').hide();
			$('price_2').hide();
			$('price_3').hide();
			$('techn_1').hide();
			$('techn_2').hide();
			$('techn_3').hide();
		}
	}
}
Event.observe(window, 'load', show_hide);