void CheckPrice()
 {
     if (shop.Init())
     {
         if (shop.CheckPrices(id) != "")
         {
             price_text.text = shop.CheckPrices(id);
         }
     }
     else
     {
         StartCoroutine("CheckFewSeconds");
     }
 }