function addopt(param)
{
	var anzahl = param.split(",")
	
	if(anzahl[1] == 0)
	{
		optionen=new Option('Show leider ausverkauft');
		document.bestellung.ak.options[0]=optionen;
		document.bestellung.ak.options[0].value='ausverkauft';
		alert("Diese Show is leider ausverkauft.\nBitte wählen Sie eine andere Show aus.");
		document.bestellung.buchung.disabled = true;
	}
	
	if(anzahl[1] != 0)
	{
		for(i=0;i<anzahl[1];i++)
		{
			optionen=new Option(i+1);
			document.bestellung.ak.options[i]=optionen;
			document.bestellung.ak.options[i].value=i+1;
		}
	}
}
