Moin Moin !
1. "javascript:" im ONCHANGE-Attribut ist schlicht falsch.
2. Was Du suchst, nennt sich eval, ist grottenlangsam und daher der falsche Weg.
3. Was Du willst, ist ungefähr das:
<script type="text/javascript">
function wrapperfunction(s)
{
var a=s.split(";");
function1(a[0]);
function2(a[1]);
}
</script>
<select name="auswahl" onChange="wrapperfunction(this.options[this.selectedIndex].value)">
<option value="2000;1000" selected>test01</option>
Alexander
--
Nein, ich beantworte keine Fragen per eMail. Dafür ist das Forum da.
Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so!"
Mein "Lieblings-Forums-Bug": http://cforum.teamone.de/phpbt/bug.php?op=show&bugid=103&pos=2
Nein, ich beantworte keine Fragen per eMail. Dafür ist das Forum da.
Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so!"
Mein "Lieblings-Forums-Bug": http://cforum.teamone.de/phpbt/bug.php?op=show&bugid=103&pos=2