document.getElementById('txtUpdate').focus();

function updateCategory( selObj ){
	var selIdx = selObj.selectedIndex;
	$('#catName').val(selObj.options[selIdx].text);
	$('#catValue').val(selObj.options[selIdx].value);
	$('#frmCategories').submit();
}

function updateSearch( selObj ){
	$('#catName').val(selObj.value);
	$('#catValue').val(selObj.value);
	$('#frmCategories').submit();
}

/** from: http://www.tomdeater.com/jquery/character_counter/ **/
$("#txtUpdate").charCounter(140,{
	container:"#counter",
	format: "%1"
});
