<select name="firmaadi" id="firmaadi" required style="padding:6px; border:2px inset rgba(33, 133, 208, 0.65); margin-bottom:5px; width: 225px;"/>
<option value=""></option>
<?php
$vip = mysql_query ("select * from garantifirma");
while ($oku = mysql_fetch_array($vip))
{

$firmaadi = $oku['firmaadi'];
$firmaadres = $oku['firmaadres'];
$firmatel = $oku['firmatel'];
?>
<option value="<?php echo $id; ?>"><?php echo $firmaadi;?></option>
<?php
}
?>
</select>
<textarea name="firmaadres" id="firmaadres" title="" cols="25" rows="3" type="text" size="25" value="" required style="border:2px inset rgba(33, 133, 208, 0.65); padding:5px; margin-bottom:5px; width: 225px;">
</textarea>
<textarea name="firmatel" id="firmatel" title="" cols="25" rows="3" type="text" size="25" value="" required style="border:2px inset rgba(33, 133, 208, 0.65); padding:5px; margin-bottom:5px; width: 225px;">
</textarea>
Şeklinde bir formum var selectbox ile seçim yaptığımda adres ve telefon bilgilerini textarea ya yazdırmak istiyorum. Java ile denedim bir türlü çözüm bulamadım. Nasıl çözebilirim?