Advertisement
Guest User

Untitled

a guest
Nov 27th, 2012
665
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.67 KB | None | 0 0
  1. <html>  
  2.  
  3. <head>  
  4.  <title>Country City List</title>  
  5.  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />  
  6.    <script src="{{ asset('./js/ajax.js') }}" type="text/javascript"></script>  
  7. </head>  
  8. <body>  
  9. <form method="post" action="{{ path('DFacebookBundle_ajax_update_mydata') }}">  
  10. <select name="country" />  
  11.   <option value="#">-Select-</option>  
  12.   <option value="usa">USA</option>  
  13.   <option value="jap">JAPAN</option>  
  14.   <option value="ger">GERMANY</option>    
  15. </select>  
  16.  
  17. <div id="">
  18.     <select name="cityList">
  19.         <option></option>
  20.     </select>
  21. </div>  
  22.  
  23.  
  24. <input type="submit" />  
  25. </form>  
  26.  
  27. </body>  
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement