$(document).ready(function(){
$(".offer").each(function(){
var selector='<select class="your_class">';
$(this).children().each(function(){
selector+='<option value="'+$(this).attr("id")+'">'+$(this).attr("id")+'</option>';
});
selector+='</select>';
$(this).children().append(selector);
});
$(".your_class").each(function(){
$(this).attr('id', "selector"+$(this).parent().attr('id'));
});
});