my page has this... not sure where to change it or if that is right for this template
// meta tag robots
if( osc_count_items() == 0 || stripos($_SERVER['REQUEST_URI'], 'search') ) {
osc_add_hook('header','bender_black_nofollow_construct');
} else {
osc_add_hook('header','bender_black_follow_construct');
}
bender_black_add_body_class('search');
$listClass = '';
$buttonClass = '';
if(osc_search_show_as() == 'gallery'){
$listClass = 'listing-grid';
$buttonClass = 'active';
}
osc_add_hook('before-main','sidebar');
function sidebar(){
osc_current_web_theme_path('search-sidebar.php');
}
osc_add_hook('footer','autocompleteCity');
function autocompleteCity(){ ?>
<script type="text/javascript">
$(function() {
function log( message ) {
$( "<div/>" ).text( message ).prependTo( "#log" );
$( "#log" ).attr( "scrollTop", 0 );
}
$( "#sCity" ).autocomplete({
source: "<?php echo osc_base_url(true); ?>?page=ajax&action=location",
minLength: 2,
select: function( event, ui ) {
$("#sRegion").attr("value", ui.item.region);
log( ui.item ?
"<?php echo osc_esc_html( __('Selected', 'bender_black') ); ?>: " + ui.item.value + " aka " + ui.item.id :
"<?php echo osc_esc_html( __('Nothing selected, input was', 'bender_black') ); ?> " + this.value );
}
});
});
</script>
now sure where, what line to change from and to