[CODE]<?
$arFilter = array("ACTIVE" => "Y","GLOBAL_ACTIVE"=>"Y");
$arSort = array("SORT"=>"DESC");
$itemsSection = GetIBlockSectionList(6, false, $arSort, 20, $arFilter);
while($arItemSection = $itemsSection->GetNext()) {
$arSections[] = $arItemSection;
}
?>
<select name="usluga" class="select --fill --white --l">
<?foreach($arSections as $section):?>
<option value=""><?=$section['NAME']?></option>
<?endforeach?>
</select>[/CODE]