When programming with jQuery, simply put the variable within brackets to send the string value of the variable as the key name.
var SomeElement = 'data1';
$.ajax({
type: 'post',
url: 'form/processor/page',
data: { [SomeElement] : 'val1' },
...
});