Wybierz listę rozwijaną możliwą do „Drop-Up”

The<select><option>foo</option></select> menu rozwijane jest zbyt blisko dolnej części strony. Chciałbym, aby menu rozwijane zawierało „drop-up”. Szukałem, ale mogłem tylko pobierać informacje o menu nawigacji. Próbowałem dać<select class="select-store"> góra: 100% i dół: 100% to pozycja: absolutna, co widziałem w menu rozwijanym menu rozwijanego „bez zmian”. czy to możliwe? Z góry dziękuję, kod jest poniżej;

HTML

<select class="select-store" onchange="document.location.href=this.value">
  <option value="/">Store Finder</option>
  <option value="/foo">foo</option>
  <option value="/beta">beta</option>
</select>

CSS

#finder .select-store{
  background: url("/images/storefinder_bg.png") no-repeat scroll 0 0 transparent;
  border: medium none;
  color: #5B5A5A;
  font-family: UNIV-C,Arial,Helvetica,sans-serif;
  font-size: 16px;
  font-weight: normal;
  height: 32px;
  line-height: 16px;
  padding: 3px;
  vertical-align: middle;
  width: 186px;
}

questionAnswers(1)

yourAnswerToTheQuestion