Помогите переписать кусок кода. Чтобы регион был скрыт, и осуществлялся выбор городов из конкретного региона. Страна уже скрыта.
        <div class="box location">
          <h2><?php _e('Location', ''); ?></h2>
          <?php $country = Country::newInstance()->listAll(); ?>
          <div class="row" <?php if(count($country) == 1) { ?>style="display:none;"<?php } ?>>
            <label for="countryId"><?php _e('Country', ''); ?></label>
            <?php ItemForm::country_select(Country::newInstance()->listAll(), $cookie_loc); ?>
          </div>         
          <div class="row">
            <label for="regionId"><?php _e('Region', ''); ?></label>
            <?php ItemForm::region_select($region_list, $cookie_loc); ?>
          </div>
          <div class="row">
            <label for="city"><span><?php _e('City', ''); ?></span></label>
            <?php ItemForm::city_select($city_list, $cookie_loc); ?>
          </div>
          <div class="row">
            <label for="address"><?php _e('Address', ''); ?></label>
            <?php ItemForm::address_text(osc_user()); ?>
          </div>
        </div>