function getSelectValue( selectObject )
{
	return selectObject.options[selectObject.selectedIndex].value;
}

function go_quick_menu( selectObject, razdel )
{
	id = getSelectValue( selectObject );
	if ( id != "" )
	{
		location.href = "/" + razdel + "/?news_id="+id;
	}
}

