// Create a shortcut
var $dom = function(elem, attr) { return new DOMBuilder(elem, attr); };
document.body.appendChild(
$dom('div', { 'class':'location_select_control' }).child(
$dom('a', { 'href':'', 'class':'location_select_label' }).child([
$dom('label').innerHTML('This is my label'),
$dom('label').innerHTML('This is another label')
])
).asDOM()
);