imediasun1,
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script language="JavaScript" type="text/javascript">
var citySelect = $('<select/>')
$.each(["london","rim"], function(i , text){
citySelect.append('<option value="' + text + '">' + text + '</option>');
});
alert(citySelect.html())
</script>
</body>
</html>