I am working on an image uploader and below is a preview of what I have so far:

The first image is what they first see. Now what I want to happen, is when an image is actually uploaded (using AJAX) then I want Javascript to remove that small tag that I have, so it doesn't appear like it does in that second image.
My HTML:
<div id="upload_pics">
<form method="post" enctype="multipart/form-data" action="upload.php">
<input type="file" name="images" id="images" multiple />
<button type="submit" id="btn">Upload Files!</button>
</form>
<small>Don't have any images yet? <a href="">Click here</a> to use a Stock Photo</small>
<div id="response"></div>
</div>
My Javascript:
if (formdata) {
$.ajax({
url: "upload.php",
type: "POST",
data: formdata,
processData: false,
contentType: false,
success: function (res) {
document.getElementById("response").innerHTML = res;
//Remove small should go here
}
});
}
