<?if (!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED!==true)die();?>
<div id="LOCATION_<?=$arParams["CITY_INPUT_NAME"];?>">
Выбор отеля
<table>
<tr>
<td>
<select name="<?=$arParams["COUNTRY_INPUT_NAME"]?>" size=7 onChange="loadCitiesList(this.value, <?=$arResult["JS_PARAMS"]?>)">
<?foreach ($arResult["COUNTRY_LIST"] as $arCountry):?>
<option value="<?=$arCountry["ID"]?>"<?if ($arCountry["ID"] == $arParams["COUNTRY"]):?> selected="selected"<?endif;?>><?=$arCountry["NAME"]?></option>
<?endforeach;?>
</select>
</td> |