Dynamic listview

Dynamic listview

hi,
i have the following code:

  1. <script type="text/javascript">
  2.        
  3.        
  4.             $(function() {
  5.                 $("#text-ricerca").keyup(function(event) {
  6.                     if (event.keyCode == 13) {
  7.                         $.ajax({
  8.                             url : 'ricerca.clienti.php',
  9.                             type : "POST",
  10.                             data : "id=" + $('#text-ricerca').val(),
  11.                             success : function(response) {
  12.                           
  13.                             $('#ListaClienti').empty();
  14.                             $("#ListaClienti").html("<li><a href='#' id='SelezionaCliente'>blabla</a></li>");
  15.                             $("#ListaClienti").listview("refresh");
  16.                             }
  17.                         });
  18.                     }
  19.                 });
  20.                 $("#SelezionaCliente").click(function() {
  21.                     alert('button clicked');
  22.                 });
  23.             });
  24.         </script>
  25.     </head><!-- /head -->
  26.     <body>
  27.         <div data-role="page" >
  28.             <div data-role="header" data-position="fixed">
  29.                 <a href="#" data-icon="forward" class="ui-btn-right" rel="external">Logout</a>
  30.                 <h1>Clienti</h1>
  31.             </div><!-- /header -->
  32.             <div data-role="content" id="content">
  33.                 <!--<p>Hello world!</p>-->
  34.                 <div class="ui-grid-a">
  35.                     <input name="text-ricerca" id="text-ricerca" value="" placeholder="Cerca clienti..." type="search">
  36.                     <div class="ui-block-a" id="ui-block-a">
  37.                     <ul data-role="listview" data-inset="true" data-split-icon="arrow-r" data-split-theme="d" id="ListaClienti">
  38.                                   <!-- <li><a href='#' id='SelezionaCliente'>blabla</a></li>-->
  39.                     </ul>
  40.                     </div><!-- /ui-block-a -->
  41.                     <div class="ui-block-b" id="ui-block-b">
  42.                     </div><!-- /ui-block-b -->
  43.                 </div><!-- /grid-a -->
  44.             </div><!-- /content -->
  45.             <div data-role="footer" data-position="fixed" style="overflow:hidden;">
  46.             </div><!-- /footer -->
  47.         </div><!-- /page -->

When i press key return the code generate a listview. it works fine but when i click to item 'blabla' the function 'SelezionaCliente' is not called. Instead if i write the code Html at line 38 the function is called and it work!
where am I doing wrong?

thanks in advance
johnix