Merhaba arkadaşlar web sitemde bir form yaptım şöyle,

<!-- BENİM FORM -->

<table style="border: 1px solid black; border-radius:5px;">
<form name="Sunucu ekleme" method="POST" action="javascript:void(0);"></form>
<tr><td>
<font style="font-size:15px; font-weight:bold;">İp & Port :</font>
<input style="font-family: Trebuchet MS;" type="text" name="ipport" size="20" value="127.0.0.1" onblur="if(this.value=='') this.value='127.0.0.1';" onfocus="if(this.value=='127.0.0.1') this.value='';">
<input style="font-family: Trebuchet MS;" type="text" name="port" size="5" value="2593" onblur="if(this.value=='') this.value='2593';" onfocus="if(this.value=='2593') this.value='';">
<select align="right" style="font-family: Trebuchet MS;" name="sturu"><option>Player Versus</option><option>Power Play</option><option>Level Shard</option><option>Role Play</option></select>
<select align="right" style="font-family: Trebuchet MS;" name="emu"><option>Sphere</option><option>RunUO</option></select>
<select align="right" style="font-family: Trebuchet MS;" name="ulke"><option>TR</option><option>EN</option></select>
<select align="right" style="font-family: Trebuchet MS;" name="renk"><option>0</option><option>1</option></select>
<font style="font-size:15px; font-weight:bold;">Web :</font> <input style="font-family: Trebuchet MS;" type="text" name="sweb" size="23" value="http://www.uolist.net" onblur="if(this.value=='') this.value='http://www.uolist.net';" onfocus="if(this.value=='http://www.uolist.net') this.value='';"> 
<input style="font-family: Trebuchet MS;" type="submit" name="button" value="Gönder">
</td></tr>
</table>

<!-- BENİM FORM -->
Bu form ile ben 4 tane textarea var bunların isimleri,

name="server_text[0]"
name="server_text[1]"
name="server_text[2]"
name="server_text[3]"
Benim option ile 4 kutudan hangisini seçersem o kutuya 2 boşluk bırakıp yazı eklemesini istiyorum.

Ben bir örnek buldum şudur,

http://www.egonomik.com/script/add-form-element/

Benim html dosyam,

<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>UOlist Admin Panel - www.uolist.net</title>
<style type="text/css">
* {margin:0; padding:0;}
body {font:13px "Trebuchet MS", Arial, Helvetica, sans-serif; background:#EEEEEE;}
body a{text-decoration: none; color:black;}
body a:hover{color:gray;}
caption {font-size:15px; margin-bottom:1px; font-weight:bold; caption-side:top;}
</style>
</head>
<body>
<div class="block" style="text-align:right;"> <b>admin</b> <a href="http://uolist.net/admin/admins.php?hede=logout">çıkış</a></div><br>
<div align="center" id="caption">Admin Panel</div>
<br>
<center>
<table style="border: 1px solid black; border-radius:5px;">
<form name="Sunucu ekleme" method="POST" action="javascript:void(0);"></form>
<tbody><tr><td>
<font style="font-size:15px; font-weight:bold;">İp &amp; Port :</font>
<input style="font-family: Trebuchet MS;" type="text" name="ipport" size="20" value="127.0.0.1" onblur="if(this.value=='') this.value='127.0.0.1';" onfocus="if(this.value=='127.0.0.1') this.value='';">
<input style="font-family: Trebuchet MS;" type="text" name="port" size="5" value="2593" onblur="if(this.value=='') this.value='2593';" onfocus="if(this.value=='2593') this.value='';">
<select align="right" style="font-family: Trebuchet MS;" name="sturu"><option>Player Versus</option><option>Power Play</option><option>Level Shard</option><option>Role Play</option></select>
<select align="right" style="font-family: Trebuchet MS;" name="emu"><option>Sphere</option><option>RunUO</option></select>
<select align="right" style="font-family: Trebuchet MS;" name="ulke"><option>TR</option><option>EN</option></select>
<select align="right" style="font-family: Trebuchet MS;" name="renk"><option>0</option><option>1</option></select>
<font style="font-size:15px; font-weight:bold;">Web :</font> <input style="font-family: Trebuchet MS;" type="text" name="sweb" size="23" value="http://www.uolist.net" onblur="if(this.value=='') this.value='http://www.uolist.net';" onfocus="if(this.value=='http://www.uolist.net') this.value='';"> 
<input style="font-family: Trebuchet MS;" type="submit" name="button" value="Gönder">
</td></tr>
</tbody></table>
</center>
<br>
<form action="" method="post">
    <div align="center"><font style="font-size:15px; font-weight:bold;">(Player Versus)</font><br>
	<textarea style="border-radius:4px;" name="server_text[0]" rows="10" cols="120">213.238.172.88,2593,http://www.neropvp.org,Sphere,pvp,tr,1
31.210.92.102,2593,http://www.pvpuo.com/,RunUO,pvp,tr,1</textarea>

<br><br>

<div align="center"><font style="font-size:15px; font-weight:bold;">(Power Play)</font><br>
<textarea style="border-radius:4px;" name="server_text[1]" rows="10" cols="120"></textarea>

<br><br>

<div align="center"><font style="font-size:15px; font-weight:bold;">(Role Play)</font><br>
<textarea style="border-radius:4px;" name="server_text[2]" rows="10" cols="120"></textarea>

<br><br><div align="center"><font style="font-size:15px; font-weight:bold;">(Level Shard)</font>
<br><textarea style="border-radius:4px;" name="server_text[3]" rows="10" cols="120"></textarea>

<br><br><br><br>
    <input type="submit" value="Kaydet"><br><br></div>



</div></div></div></form></body></html>
Bunu nasıl yapabilirim yardımcı olursanız sevinirim?