JQuery Form Plugin: Can not select form in the future

JQuery Form Plugin: Can not select form in the future

So I have the following: 
    1. var content = '<td><form id="EmailForm" method="post" action="' + path + '">' +
    2. '<input type="text" class="eList" name="emailList" title="Email(s)..."/>' +
    3.   </form>'</td>';
    4. $(this).parent().after(content);
  1. $('#EmailForm').ajaxForm({
  2. success: function(d) {
  3. }
  4. });
This form is not being selected after it is dynamically inserted. What can I do to select it in the future ?