Check Dynamically Created Input Values

Check Dynamically Created Input Values

When submitting a form, I would like to check the values of some fields first.

These fields are dynamically generated by javascript after the page has loaded (that is, a user selected a value from a dropdown between 1 and 10, if 2 is selected, 2 inputs are generated, if 7 is selected, 7 inputs are generated etc).

I think I understand that Jquery isn't aware of these items because they were created after the DOM was scanned. Is there any way I can 'refresh' jquery to make it aware of these new items?

Thanks
-Chris