--- /dev/null
+// ==UserScript==
+// @name set e-mail field to HIVfasta@mailinator.com
+// @namespace http://tampermonkey.net/
+// @version 0.1
+// @description only sets e-mail field when title matches "Mail-back submission form "
+// @author You
+// @match https://www.hiv.lanl.gov/components/sequence/HIV/search/search.comp
+// @grant none
+// @run-at document-end
+// ==/UserScript==
+
+(function() {
+ 'use strict';
+
+ function get0(s) {
+ var sel = document.querySelectorAll(s);
+ if (sel.length == 1) {
+ var out = sel[0];
+ console.log(out);
+ return out;
+ }
+ }
+
+ if (document.title.startsWith('Mail-back submission form ')) {
+ get0('input[name=email]').value = 'HIVfasta@mailinator.com';
+ get0('input[name=job_title]').focus();
+ }
+})();
\ No newline at end of file