Chain Select Menu Not showing data on mobile devices when use data-native-menu="false"

Chain Select Menu Not showing data on mobile devices when use data-native-menu="false"

Hay i have a problem in my jquery mobile sites. i have three drop down first related to country 2nd related to states and third is city. when i select country then relative states of thus country should be shown. this thing working o my lical server(desktop) but when i upload the site on server and access it throw mobile device countries are there and i can select them . but states are not showing (Remeber I am using data-native-menu="false" ).
  1. function getStates (cid) {
  2. $.ajax
  3. ({
  4. type: "POST",
  5. url: "http://localhost/site/get-mobile-states?cid="+cid,
  6. cache: false,
  7. success: function(html)
  8. {
  9. $(".state").html(html);
  10. }
  11. });
  12. }
  13. function getCities (sid) {
  14. $.ajax
  15. ({
  16. type: "POST",
  17. url: "http://localhost/site/get-mobile-cities?sid="+sid,
  18. cache: false,
  19. success: function(html)
  20. {
  21. $(".city").html(html);
  22. }
  23. });
  24. }

  25. <form action="" method="get">
  26.         <div data-role="fieldcontain" >
  27.         <!-- This is the Country Select box -->
  28.         <label ><h3>Country</h3></label><br />
  29.         <select name="country" id="country" data-native-menu="false"  data-theme="d" data-mini="true" onChange="return getStates (this.value);">
  30.         <?php 
  31.         foreach($country as $count)
  32.         {
  33.         
  34.         ?>
  35.         <option value="<?php echo $count['id']; ?>"><?php echo $count['name'] ?></option>
  36.         <?php }       ?>
  37.         </select>
  38.         </div>
  39.         <!-- This is the State Select box -->
  40. <div data-role="fieldcontain">
  41.          <label ><h3 >State</h3></label><br />
  42. <select  name="state" id="state" class="state" data-native-menu="false"   data-theme="d" data-mini="true" onChange="return getCities (this.value);">
  43. <option selected="selected"></option>
  44. </select>
  45.         </div>
  46.          <!-- This is the City Select box -->
  47.    <div data-role="fieldcontain">
  48.         <label ><h3 >City</h3></label><br />
  49.         <select name="city"  data-theme="d" data-native-menu="false"  data-mini="true" class="city">
  50. <option selected="selected"></option>
  51. </select> 
  52.         </div>