New jQuery Template System
Dynamic and Smart jQuery Template Engine. Just pass the data and by setting some html directives it generate whatever you want
<select id='countries'>
<option loop='true'>%#field%</option>
</select>
var loadedData = ['Australia', 'Brazil', 'Canada', 'China', 'England', 'France', 'Italy', 'United State'];
$('#countries').template(loadedData);
<select id="countries">
<option>Australia</option>
<option>Brazil</option>
<option>Canada</option>
...
..
.
</select>
Check full doc and samples here jQuery Template Engine