ФедорН,
забыл, в расчетах под span изменил, а в клонировании нет, должно быть так:
$('button').click(function() {
$('div.roword').first()
.clone()
.appendTo($('#form'))
.find('select,[type=text]').val('')
.end()
.find('input')
.val(function() {
return this.min
})
.end()
.find('span').text(function() {
return $(this).prev()[0].min
})
.end()
.find('a').click(function() {
$(this).closest('.roword').remove()
})
.show()
});