Code:
<select name=amount>
{if $products[product].min_amount le 1}
{assign var="start_quantity" value=1}
{else}
{assign var="start_quantity" value=$products[product].min_amount}
{/if}
{section name=quantity loop=$mq start=$start_quantity}
<option value="{%quantity.index%}" {if $smarty.get.quantity eq %quantity.index%}selected{/if}>{%quantity.index%}</option>
{/section}
</select>
Replace with this code and that should do it:
Code:
<input type="text" name="amount" size="3">