The short answer is : NO
However, as you already have the required url to attach to the <script>
tag's source attribute, this can be accomplished with the help of javascript itself.
First, we are going to create a script tag, and then modify its src attribute to point to the URL. Then, simply attach it to the required element with id, say, "foo"
<script>
var url="Pastebin.com"
var extra="/74205"
var parent = document.getElementById("foo")
var someScriptElement = document.createElement("script")
someScriptElement.setAttribute("src",url+extra)
foo.appendChild(someScriptElement)
</script>
That should do it.