// JavaScript Document
   showprice = function(startlevel,endlevel)
        {
            var _mess = wow_power_leveling_service_us.detailBind(startlevel,endlevel).value;
            if(_mess!="-1")
            {
                document.getElementById("price").innerHTML=null;
                document.getElementById("price").innerHTML = _mess;
                document.getElementById("ajbtn").style.display="block";
            }
            else
            {
                document.getElementById("ajbtn").style.display="none";
                document.getElementById("price").innerHTML="<span style='color:Red; font-size:12px; font-weight:bold;'>The start level must be less than the desired level!</span>";
            }
            
        }
        
        getselect = function()
        {
            var _index = document.getElementById("DropDownList1").options[document.getElementById("DropDownList1").selectedIndex].value;
            var _index1 = document.getElementById("DropDownList2").options[document.getElementById("DropDownList2").selectedIndex].value;
            if(_index!="-1"&&_index1!="-1")
            {
                 showprice(_index,_index1);
            }
           
        }
        
        getbuy =function()
        {
            
            var _index = document.getElementById("DropDownList1").options[document.getElementById("DropDownList1").selectedIndex].value;
            var _index1 = document.getElementById("DropDownList2").options[document.getElementById("DropDownList2").selectedIndex].value;
            var _gameid = document.getElementById("gamenameid").value;
            wow_power_leveling_service_us.buy(_index,_index1,_gameid);
            showprice(_index,_index1);
        }