function produktauswahl_box_go(form_id, select_id)
{
	var x = '';

	if (typeof(document.forms[form_id]) != 'undefined') {
		if (document.getElementsByName(select_id)) {
			x = document.forms[form_id].elements[select_id].options[document.forms[form_id].elements[select_id].selectedIndex].value;

			if (x == 'default') {
				document.forms[form_id].reset();
				return;
			}
			else {
				self.location.href = x;
			}
		}
	}
}
