clone and change

clone and change

Is there a problem with trying to fire a .change() on a cloned item? It's not working and I can't figure out why.
  1.   $("#Category").change(function(e) {
  2.     var question_set = this.value;
  3.     var replace_set = $("#question" + question_set);

  4.     // reset box
  5.     $("#question_box").html("");
  6.     $(replace_set).clone().appendTo("#question_box");
  7.     $("#question_box div").attr('id', 'question_set');
  8.     $("#question_box select").attr('id', 'question_one');
  9.     $("#question_set").removeClass('question_hidden');

  10.     e.preventDefault();
  11.   });

  12.   // This is the part that doesn't work. The correct select is there with the correct
  13.   // correct id=question_one but when I change the select box the alert doesn't fire.
  14.   $("#question_one").change(function(e) {
  15.     var selected_question = this.value;
  16.     alert("selected_question: " + selected_question);

  17.     e.preventDefault();
  18.   });

Any help on this one?