var station;
station=document.getElementById("stlist");
station=station.innerHTML;
var stationtemp=station.split(" - ");

for (var i=0; i<stationtemp.length; i++){
stationtemp[i]="<a href=\"#\" onclick=\"bstf(\'"+stationtemp[i]+"\')\">"+stationtemp[i]+"</a>";
}

station=stationtemp.join(" - ");

document.getElementById("stlist").innerHTML=station;

