Good day!
Well... you can recive access to any tag on HTML page form java-script with
code like this:
<h1 id='Razdel'> here will be text from selected option </h1>
<br>
<select id=selector onchange='some_event()'>
.............
</select>
........
function some_event()
{
objH1 = document.all["razdel"];
objSelector = document.all["selector"];
objH1.innerText = objSelector.value;
}
.........
innerText is a content betvin <h1> </h1>
Well... don't test that code... so cach only idea... but if you need more
coments mail me I'll send working example.
Have a nice day!
-------------------
Galkov Vladimir
[EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]