function ZablokujRespPracy(timer,element)
outputChatBox(timer,element)
setElementData (element, "player:time_work", timer)
setTimer(function()
local getData = tonumber(getElementData (element, "player:time_work")) or 0
if getElementData(element, "player:time_work") < 1 then return end
if getData then
setElementData (element, "player:time_work", getData-1)
end
end, 1000, 0)
end