Prueba de esta forma :
Código PHP:
Ver original<?php
echo '<form id="form2" name="form2" method="post" action="">
<select name="select">
<option selected="selected" value="-- Seleccione --">-- Seleccione --</option>';
for($i = 0; $i <= count($wordChunks); $i++){ echo '<option value="'.$wordChunks.'">'.$wordChunks.'</option>';
}
echo '</select>
</form>';
?>