
jQuery(document).ready(function(){

    jQuery('#ogprodcat').change(function(){
	var x = jQuery(this);
	jQuery.ajax({
	    url: 'http://nokiareviewz.com/get-products/',
	    data: {catID:x.val()},
	    type: 'POST',
	    success: function(html){
		jQuery('#og_products').html(html);
		jQuery('#select_product').change(function(){
		    window.location.href = jQuery(this).val();
		});
	    }
	});
    });

});