Matching width of "text" and "select" inputs?

Matching width of "text" and "select" inputs?

Hi,

For some reason, the SELECT boxes are set at 100% width (in their respective block), yet the TEXT ones are a lot smaller. Is there anything I can do to make them match up width wise? It just makes  the form look messy how it is now :( Here is an example of what I'm using:

  1.                 <div data-role="fieldcontain">
  2.                     <label for="RealName">Real Name:</label>
  3.                     <input type="text" name="RealName" id="RealName" value="REAL_NAME" placeholder="Your Real Name"/>
  4.                 </div>
  5.                           
  6.                 <div data-role="fieldcontain">
  7.                    <label for="Language" class="select">Language:</label>
  8.                    <select name="Language" id="Language">
  9.                       <option value="en">English</option>
  10.                       <option value="fr">Fran&ccedil;ais</option>
  11.                    </select>
  12.                 </div>   
TIA :)

Andy