function get_selectbox_value (x) {
  var i;
  for (i = 0; i < x.options.length; i++) {
  	if (x.options[i].selected)
		return x.options[i].value;
  }
}

