Label tag numeric text box

HTML

<script src="http://cdn.kendostatic.com/2013.3.1119/js/kendo.all.min.js"></script>
<link rel="stylesheet" href="http://cdn.kendostatic.com/2013.3.1119/styles/kendo.common.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2013.3.1119/styles/kendo.default.min.css">
<script type="text/x-kendo-tmpl" id="headerTemplate">
    <strong>header template</strong>
</script>

<script type="text/x-kendo-tmpl" id="template">
   item template: #=text#
</script>

Oldskool: <select id="combobox2"><option>Value1</option><option>Value2</option> </select>

JavaScript

$('#combobox2').kendoComboBox({
    template: $('#template').html(),
    headerTemplate: $('#headerTemplate').html()
});