Selectmnenu repeated nesting

Selectmnenu repeated nesting

I have a selectmenu in a page and I want to save the page and use it offline.  However, when I view the saved page the selectmenu has been nested in a button(?) Further attempts to save the subsequent page result in deeper nests being created.  Why would this be so?  Any help gratefully received.  Here is my code:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Error Test</title>
  5. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
  6. <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jquerymobile/1.4.0/jquery.mobile.min.css" />
  7. <script src="http://ajax.googleapis.com/ajax/libs/jquerymobile/1.4.0/jquery.mobile.min.js"></script>
  8. </head>
  9. <body>
  10. <div id="page" data-role="page">
  11. <form>
  12. <label for="section-jump">Show Section</label>
  13. <select id="section-jump" name="section-jump">
  14. <option value="1">One</option>
  15. <option value="1">Two</option>
  16. </select>
  17. </form>
  18. </div>
  19. </body>
  20. </html>