How to append the cloned drop-down in specific Th

How to append the cloned drop-down in specific Th

Dear All,

I am able to cloned the drop-down and append to html table .But I required to append the cloned control in specific Th by  such as like  tq:Eq(3) and set the value to it 

Can any one please help me by reviewing my fiddle. Because I had written the below code ,But find no luck


  1.  function submitvallues(button) {
  2.     debugger;
  3.     var row = $(button).closest('tr');
  4.     var td = row.find("td:eq(5)");
  5.      var select = $("#cars").clone();
  6.        select.attr("id","hello");
  7.                 select.val("Audi");
  8.      td.html(select);
  9.  }

Srk