Align Select options with labels horizontally

Align Select options with labels horizontally

Hi.. Am trying to align 2 select options with labels horizontally . I implemented the  Control Group code 
but am not able to display labels... it hides the labels . Only Select options are visible .(dropdowns no labels are associated with)

  1.     <fieldset data-role="controlgroup" data-type="horizontal">
  2. <label for="location" >Location</label>
  3. <select name="location" id="location" width="20%">
  4. <option>Add new location</option>     
  5. </select>
  6.             <label for="selectmenu2">
  7.                 Choose:
  8.             </label>
  9.             <select id="selectmenu2" name="DropDown" data-theme="b">
  10.                 <option value="Select">
  11.                     Select
  12.                 </option>
  13.                 <option value="Viilage1">
  14.                     Viilage1
  15.                 </option>
  16.                 <option value="Viilage2">
  17.                     Viilage2
  18.                 </option>
  19.             </select>
  20.         </div>