Do you mean something like ...
<?php
$skins = array(
'101' => 'bill'
, '102' => 'jim'
, '103' => 'bob'
, '104' => 'paul'
, '105' => 'fred'
);
$myskin = 102;
echo '<select name="style">';
for($i = 101; $i <= 105; $i++){
$selected = ($myskin == $i)? ' selected': '';
echo '<option value="'.$i.'"'.$selected.'>'.$skins[$i].'</option>';
}
echo '</select>';
?>
Just had to tweak the counter to suit ... Paul.
EDIT: Removed extra php tags